home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / MotifApp / ComponentLib / Makefile < prev    next >
Encoding:
Makefile  |  1995-05-03  |  187 b   |  16 lines

  1. include ../make.cfg
  2.  
  3. all: libcomponent.a
  4.  
  5.  
  6. OBJS =   basic.o \
  7.      UIComponent.o
  8.  
  9.  
  10. libcomponent.a: $(OBJS)
  11.     rm -f libcomponent.a
  12.     ar rv libcomponent.a $(OBJS)
  13.   
  14. clobber:
  15.     rm -f *.o *.a
  16.